home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getgroups.c,v < prev    next >
Text File  |  1988-06-19  |  1KB  |  82 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.23;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * getgroups.c --
  26.  *
  27.  *    Procedure to map from Unix getgroups system call to Sprite.
  28.  *
  29.  * Copyright 1986 Regents of the University of California
  30.  * All rights reserved.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: getgroups.c,v 1.2 86/10/14 14:33:27 nelson Exp $ SPRITE (Berkeley)";
  35. #endif not lint
  36.  
  37. #include "sprite.h"
  38. #include "proc.h"
  39.  
  40. #include "compatInt.h"
  41.  
  42.  
  43. /*
  44.  *----------------------------------------------------------------------
  45.  *
  46.  * getgroups --
  47.  *
  48.  *    Procedure to map from Unix getgroups system call to 
  49.  *    Sprite Proc_GetGroupIDs.
  50.  *
  51.  * Results:
  52.  *      UNIX_SUCCESS    - the call was successful.
  53.  *      UNIX_ERROR      - the call was not successful.
  54.  *                        The actual error code stored in errno.
  55.  *
  56.  * Side effects:
  57.  *    None.
  58.  *
  59.  *----------------------------------------------------------------------
  60.  */
  61.  
  62. int
  63. getgroups(gidsetlen, gidset)
  64.     int gidsetlen;
  65.     int *gidset;
  66. {
  67.     ReturnStatus status;    /* result returned by Proc_GetGroupIDs */
  68.     int    numGids;
  69.  
  70.     status = Proc_GetGroupIDs(gidsetlen, gidset, &numGids);
  71.     if (status != SUCCESS) {
  72.     errno = Compat_MapCode(status);
  73.     return(UNIX_ERROR);
  74.     } else {
  75.     if (numGids > gidsetlen) {
  76.         numGids = gidsetlen;
  77.     }
  78.     return(numGids);
  79.     }
  80. }
  81. @
  82.